home *** CD-ROM | disk | FTP | other *** search
/ Yellows - Privacy (Deluxe) / Akira Gomi Photographs - Yellows: Privacy (Deluxe) - Disc 1.iso / footage / pict23.dxr / 00040.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  479 b   |  29 lines

  1. global movieshow, g_pause
  2.  
  3. on mouseDown
  4.   button()
  5. end
  6.  
  7. on mouseUp
  8.   if rollOver(clickOn()) then
  9.     startTimer()
  10.     repeat with i = 38 to 40
  11.       puppetSprite(i, 0)
  12.     end repeat
  13.     if movieshow = 1 then
  14.       set the keyDownScript to "checkkeytab"
  15.     else
  16.       set the keyDownScript to "checkkey0"
  17.     end if
  18.     if movieshow = 1 then
  19.       go("move")
  20.     else
  21.       if g_pause = 1 then
  22.         go("pa")
  23.       else
  24.         go("from")
  25.       end if
  26.     end if
  27.   end if
  28. end
  29.